home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000299_jaltman@watsun.cc.columbia.edu_Fri Aug 10 12:21:55 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  4KB  |  102 lines

  1. Article: 12654 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!jaltman
  3. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Init settings
  6. Date: 10 Aug 2001 16:12:40 GMT
  7. Organization: Columbia University
  8. Lines: 85
  9. Message-ID: <9l115o$661$1@newsmaster.cc.columbia.edu>
  10. References: <tn0hlqg5v5p9a2@corp.supernews.com> <9kpn6s$eb4$1@newsmaster.cc.columbia.edu> <tn814g5t0guve0@corp.supernews.com>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 997459960 6337 128.59.39.2 (10 Aug 2001 16:12:40 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 10 Aug 2001 16:12:40 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12654
  16.  
  17. In K95 it is not necessary to send AT sequences from a script.  
  18. To acheive your desired goal
  19.  
  20.   set ask-timer 5
  21.   set tapi line zoom-modem-name
  22.   while success {
  23.     answer 0
  24.     if success server
  25.     getc \%c {Answer another call? }
  26.   }
  27.   close connection
  28.  
  29. instead of set tapi line you could use
  30.  
  31.   set modem type <appropriate-zoom-type>
  32.   set port com3
  33.   set speed 57600
  34.   set flow rts/cts
  35.  
  36.  
  37.  
  38.  
  39. In article <tn814g5t0guve0@corp.supernews.com>,
  40. Steve <steve@baus-systems.com> wrote:
  41. : I have a standard external Zoom modem which works fine.  I setup the Zoom
  42. : with an init string which includes s0=1 and then set K95 in server mode, the
  43. : other side dials in and sends and gets files as needed.
  44. : As an excersise to prove I have no life, I was messing around with a USB
  45. : modem to see if I could get it to work specifying it as Tapi.  I initially
  46. : set the modem by going into connect mode and sending an AT string which
  47. : seemed to take fine but I could not get the USB modem to keep the s0=1
  48. : setting so the modem was not answering once in server mode.  I then made a
  49. : change to output an init string as Windows said it was using Com3:.  That
  50. : got the modem to answer and most of the time it would work but about ever
  51. : 4th or 5th call in the middle of files going across I would get an exception
  52. : error or the PC would simply reboot which typically is not what you would
  53. : like to see during a file transfer.
  54. : I set the Zoom backup and no problem.
  55. : Steve
  56. : Jeffrey Altman <jaltman@watsun.cc.columbia.edu> wrote in message
  57. : news:9kpn6s$eb4$1@newsmaster.cc.columbia.edu...
  58. : > In article <tn0hlqg5v5p9a2@corp.supernews.com>,
  59. : > Steve <steve@baus-systems.com> wrote:
  60. : > : What are my options for specifying modem settings in an ini file?
  61. : > :
  62. : > : I have a Zoom external modem I would like to setup with AT commands when
  63. : I
  64. : > : start k95.  If this is best accomplished in a global k95 init file I
  65. : need to
  66. : > : make sure they are specific to the Zoom modem as I may be using other
  67. : modems
  68. : > : in the future.  I have created another .ini file that I am calling when
  69. : I
  70. : > : startup so if it is better to include it there, that is an option.
  71. : > :
  72. : > : What do I need to do to use a USB modem, set the port and the specific
  73. : > : settings like above?
  74. : > :
  75. : > : Thanks,
  76. : > : Steve
  77. : >
  78. : > Unlike MS-DOS Kermit, K95 does not need AT commands to be specified in
  79. : > an init file.  If you are installing the Zoom modem under Windows to
  80. : > support the USB connection, your best bet is to simply access the
  81. : > modem as a TAPI (windows telephony) device
  82. : >
  83. : >   SET TAPI Line <device-name>
  84. : >
  85. : > and then either DIAL or ANSWER as your needs require.
  86. : >
  87. : >  Jeffrey Altman * Sr.Software Designer      C-Kermit 8.0 Beta available
  88. : >  The Kermit Project @ Columbia University   includes Secure Telnet and FTP
  89. : >  http://www.kermit-project.org/             using Kerberos, SRP, and
  90. : >  kermit-support@kermit-project.org          OpenSSL.  SSH soon to follow.
  91.  
  92.  
  93.  Jeffrey Altman * Sr.Software Designer      C-Kermit 8.0 Beta available
  94.  The Kermit Project @ Columbia University   includes Secure Telnet and FTP
  95.  http://www.kermit-project.org/             using Kerberos, SRP, and 
  96.  kermit-support@kermit-project.org          OpenSSL.  SSH soon to follow.
  97.